home *** CD-ROM | disk | FTP | other *** search
- var target;
- var attackRate = 25;
- var timer = 0;
- var health = 100;
- stop();
- onEnterFrame = function()
- {
- if(_root.userCar == "")
- {
- target = _parent.valet_mc;
- }
- else
- {
- target = _parent[_root.userCar];
- }
- this._rotation = Math.atan2(this._y - target._y,this._x - target._x) * 180 / 3.141592653589793;
- if(_currentframe == 1)
- {
- gotoAndStop(3);
- }
- if(_root.userCar != "")
- {
- if(this.hitTest(target) && this._currentframe != _totalframes)
- {
- target._name = "car0_mc";
- target.health = 0;
- gotoAndStop(4);
- }
- }
- };
-